Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

keyweaver

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keyweaver

Generate unique string keys from nested data structures

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

keyweaver

KeyWeaver is a lightweight utility library for generating unique string keys from nested data structures. It provides a simple and efficient way to represent complex data hierarchies as string keys, suitable for use in various scenarios such as caching, data storage, or object comparison.

Installation

using npm:

npm install --save keyweaver

or yarn:

yarn add keyweaver

or pnpm:

pnpm add keyweaver

toKey

type NestedArray = Array<PrimitiveOrNested> | ReadonlyArray<PrimitiveOrNested>;

type NestedObject = {
  [key: string | number]: PrimitiveOrNested;
};

type PrimitiveOrNested =
  | boolean
  | string
  | number
  | undefined
  | null
  | bigint
  | Date
  | NestedObject
  | NestedArray;

const toKey: (value: PrimitiveOrNested) => string;

Generates unique string key from provided nested objects, arrays, and primitives. It recursively traverses the input data structure, converting each element into a string representation and concatenating them with delimiters to ensure uniqueness.

import toKey from 'keyweaver';

const key = toKey({
  name: 'John Doe',
  age: 30,
  address: {
    city: 'New York',
    zip: '10001',
    street: '123 Main St',
  },
  hobbies: ['reading', 'hiking', 'coding'],
  importantDates: {
    birthday: new Date('1990-01-01'),
    anniversary: new Date('2015-07-15'),
  },
  some: { very: [{ nested: 'value' }] },
});

toKey('null') !== toKey(null); // true

toKey(1) !== toKey('1'); // true

toKey(1) !== toKey([1]); // true

toKey({ prop1: true, prop2: false }) === toKey({ prop2: false, prop1: true }); // true

toKey({ prop1: true, prop2: undefined }) === toKey({ prop1: true }); // true

License

MIT © Andrii Dubetskyi

Keywords

FAQs

Package last updated on 24 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc